200
|
I've noticed that the toolbar is cut when perform scrolling. Is it possible to change that shape

With AxToolBar1
.ArrangeItemsAs = EXTOOLBARLib.ArrangeItemsEnum.exArrangeItemsScroll Or EXTOOLBARLib.ArrangeItemsEnum.exArrangeItemsHorizontal
.VisualAppearance.Add(1,"gBFLBCJwBAEHhEJAAEhIDhAxGAyg0HG0Og40HIyiwAGY1GMJiYAf8jAEhhUnAAyhEqg8hk0oAsIjYxHAwmYwHEbGY2GEhGkMlFBlAOhAJhEuoUHjcbGQ1EtMp0hGsbG" & _
"owEsvpNBlkpo9ZoNQp8rqMIqdkqwCr1ZrdbrFpsFvs1hg9VuVCjdBA0IoElhFog6zbDykUkhsPms3nMInc9hA0mNpoVrruQpdiutNq9kqlWtuQg+Sluewufp1gqWbEt+" & _
"0UK0F81YAuGkut01F3lF7vF6yYA1Ujf4ATjNd8KmeHh84n1MGI1zt9rN7vOhg+9knB4ejAE0m3HHHJlfL1VB5sH6G76m/63Ey2xAG0uMbkIbUDh3me1vjoV7vYIhBQNI" & _
"xjoOo5DKGKQj8hAhCbA6ThshAUN0g7or4DCFCQ14AHATIAHkbBZt83xxFCDcMw3DsQRFEINm8SQAHydpuxTEh4GkUzfHATYARnGsPn+d5mk5HkPv4g7/QBAQyhk1UFgB" & _
"BMloTBqDwe8iEQkg0KITCzXyDDhZxI30uRJFMXG7FYARTFLfR1MMRSDNUcSC30fE5IYASLAMBhmjZDQQJs9wZB0qQhCaFChC81g3M8RRuAE5IPMENRjDUdN8g8vw7MtJ" & _
"x5SseTHODCTpO0jp+hE/SZPqUSgAEpABCS9ytQkLyDTtPU2f8uUxGkg0dDtDxlXLCUPRMRxxRoAHW2wAICA==")
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exScrollViewBorder,16777216)
With .Items
.BackColor = RGB(128,128,128)
With .Add("Expand",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupVertical Or EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
.Check = True
.ShowPopupOnChecked = True
With .Items
.Padding = "22,0,0,0"
.Add("Radio 1").Radio = True
.Add("Radio 2").Radio = True
With .Add("Radio 3")
.Radio = True
.Checked = True
End With
End With
.Checked = True
End With
.Add("").ToString = "Expand[typ=1][chk=1][spchk=-1][group=0x0103][itemspad=22,0,0,0](Radio 1[id=20][typ=2],Radio 2[id=30][typ=2],Radio 3[id=40][typ=" & _
"2][chk=1])"
End With
.Refresh()
End With
|
199
|
I've noticed that the toolbar is cut when perform scrolling. Is it possible to prevent that

With AxToolBar1
.ArrangeItemsAs = EXTOOLBARLib.ArrangeItemsEnum.exArrangeItemsScroll Or EXTOOLBARLib.ArrangeItemsEnum.exArrangeItemsHorizontal
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exScrollViewBorder,-1)
With .Items
.BackColor = RGB(240,240,240)
With .Add("Expand",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupVertical Or EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
.Check = True
.ShowPopupOnChecked = True
With .Items
.Padding = "22,0,0,0"
.Add("Radio 1").Radio = True
.Add("Radio 2").Radio = True
With .Add("Radio 3")
.Radio = True
.Checked = True
End With
End With
.Checked = True
End With
.Add("").ToString = "Expand[typ=1][chk=1][spchk=-1][group=0x0103][itemspad=22,0,0,0](Radio 1[id=20][typ=2],Radio 2[id=30][typ=2],Radio 3[id=40][typ=" & _
"2][chk=1])"
End With
.Refresh()
End With
|
198
|
How can I scroll the items within the toolbar

With AxToolBar1
.ArrangeItemsAs = EXTOOLBARLib.ArrangeItemsEnum.exArrangeItemsScroll Or EXTOOLBARLib.ArrangeItemsEnum.exArrangeItemsHorizontal
With .Items
.BackColor = RGB(240,240,240)
With .Add("Expand",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupVertical Or EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
.Check = True
.ShowPopupOnChecked = True
With .Items
.Padding = "22,0,0,0"
.Add("Radio 1").Radio = True
.Add("Radio 2").Radio = True
With .Add("Radio 3")
.Radio = True
.Checked = True
End With
End With
.Checked = True
End With
.Add("").ToString = "Expand[typ=1][chk=1][spchk=-1][group=0x0103][itemspad=22,0,0,0](Radio 1[id=20][typ=2],Radio 2[id=30][typ=2],Radio 3[id=40][typ=" & _
"2][chk=1])"
End With
.Refresh()
End With
|
197
|
How can I show an item aligned to the bottom size of the toolbar

With AxToolBar1
.ArrangeItemsAs = EXTOOLBARLib.ArrangeItemsEnum.exArrangeItemsHorizontal
.Items.ToString = "C1[chk],C2[chk]"
With .Items.Add("R")
.Check = True
.Checked = True
.Y = "height - iheight"
End With
End With
|
196
|
How can I show an item aligned to the right of the toolbar

With AxToolBar1
.ArrangeItemsAs = EXTOOLBARLib.ArrangeItemsEnum.exArrangeItemsHorizontal
.Items.ToString = "C1[chk],C2[chk]"
With .Items.Add("R")
.Check = True
.Checked = True
.X = "width - iwidth"
End With
End With
|
195
|
How can I arrange horizontally the items on the toolbar

With AxToolBar1
.ArrangeItemsAs = EXTOOLBARLib.ArrangeItemsEnum.exArrangeItemsHorizontal
With .Items
With .Add("Expand",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupVertical Or EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
.Check = True
.ShowPopupOnChecked = True
With .Items
.Padding = "22,0,0,0"
.Add("Radio 1").Radio = True
.Add("Radio 2").Radio = True
With .Add("Radio 3")
.Radio = True
.Checked = True
End With
End With
.Checked = True
End With
.Add("").ToString = "Expand[typ=1][chk=1][spchk=-1][group=0x0103][itemspad=22,0,0,0](Radio 1[id=20][typ=2],Radio 2[id=30][typ=2],Radio 3[id=40][typ=" & _
"2][chk=1])"
End With
.Refresh()
End With
|
194
|
How can I display the drop down panel to a specified location only
With AxToolBar1
.PopupAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.ShadowBorder
With .Items
With .Add("Popup",2,100)
.ShowPopupArrow = False
.ShowPopupAlign = EXTOOLBARLib.ShowPopupAlignEnum.exShowPopupAlignDown
.ShowPopupOffset = "0:screen,0:screen"
With .Items
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
End With
.Refresh()
End With
|
193
|
How can I displays the drop down bellow the control, rather than item itself

With AxToolBar1
.PopupAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.ShadowBorder
With .Items
With .Add("Popup <b>1",2,100)
.ShowPopupArrow = False
.ShowPopupAlign = EXTOOLBARLib.ShowPopupAlignEnum.exShowPopupAlignDown
.ShowPopupOffset = "0,0:control"
With .Items
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
With .Add("Popup <b>2",2,200)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
.Add("Item 2")
.Add("Item 3")
.Add("Item 4")
End With
End With
End With
.Refresh()
End With
|
192
|
How can I change the visual appearance of the progress bar

With AxToolBar1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.set_Background(&H104,16777216)
With .Items
With .Add("Progress")
.AllowEdit = EXTOOLBARLib.AllowEditEnum.exItemEditProgress
.EditWidth = -128
.EditValue = 25
End With
End With
.Refresh()
End With
|
191
|
How can I change the progress's color

With AxToolBar1
.set_Background(&H104,255)
With .Items
With .Add("Progress")
.AllowEdit = EXTOOLBARLib.AllowEditEnum.exItemEditProgress
.EditWidth = -128
.EditValue = 25
End With
End With
.Refresh()
End With
|
190
|
I am using the Item.Visible property on False to hide the item, but the editor is still visible
' CheckItem event - Occurs when the user checks the item.
Private Sub AxToolBar1_CheckItem(ByVal sender As System.Object, ByVal e As AxEXTOOLBARLib._IToolBarEvents_CheckItemEvent) Handles AxToolBar1.CheckItem
With AxToolBar1
With .Items.Item(1000)
.Visible = True
.AllowEdit = EXTOOLBARLib.AllowEditEnum.exItemEditReadOnly Or EXTOOLBARLib.AllowEditEnum.exItemEditProgress
End With
.Refresh()
End With
End Sub
' UncheckItem event - Occurs when the user unchecks the item.
Private Sub AxToolBar1_UncheckItem(ByVal sender As System.Object, ByVal e As AxEXTOOLBARLib._IToolBarEvents_UncheckItemEvent) Handles AxToolBar1.UncheckItem
With AxToolBar1
With .Items.Item(1000)
.Visible = False
.AllowEdit = EXTOOLBARLib.AllowEditEnum.exItemDisableEdit
End With
.Refresh()
End With
End Sub
With AxToolBar1
With .Items
With .Add("",2)
With .Items
.Add("Visible")
With .Add("")
.Check = True
.Checked = True
End With
With .Add("Item 2",Nothing,1000)
.ItemHeight = 18
.Caption = "Percent"
.AllowEdit = EXTOOLBARLib.AllowEditEnum.exItemEditReadOnly Or EXTOOLBARLib.AllowEditEnum.exItemEditProgress
.EditValue = 50
.Visible = True
End With
.Add("Visible")
End With
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
End With
End With
.Refresh()
End With
|
189
|
How can I change the color of a disabled item

With AxToolBar1
With .Items
With .Add("Disabled",2,0)
.ForeColor = RGB(255,0,0)
.Items.Add("")
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
.ShowPopupArrow = False
End With
.Add("Disabled").Enabled = False
End With
.Refresh()
End With
|
188
|
Microsoft Windows 8.1 - Ribbon Like

Dim var_Item,var_Item1,var_Item2,var_Item3,var_Item4
With AxToolBar1
With .Items
.ToString = "[id=0][group=0x03](),[id=-99][bg=0x01000000][group=0x03][itemspad=4,4,4,4]([id=9000])"
With .Item(0).Items
.Add("",0,0).Padding = "8,0,0,0"
var_Item3 = .Add("New Page")
With var_Item3
.ToString = "[id=0][typ=2][chk=1][spchk=-1][show=1][grp=10][bghot=0x12000000][bgsel=0x11000000][bgselhot=0x14000000][group=0x03][tab=9000][p" & _
"ad=4,0,4,0][popupoffset=-4,-1]([id=0][group=0x03]([id=0][group=0x03]))"
.ID = 200
.Caption = "Page1"
.ShowPopupAlign = EXTOOLBARLib.ShowPopupAlignEnum.exShowPopupAlignDown
With .Items.Item(0)
var_Item = .Items.Add("New Group")
With var_Item
.ToString = "[id=0][group=0x03][itemspad=4,4,4,18][itemsbg=0x02000000][itemsbghot=0x04000000]()"
.Caption = "<b><font ;14>A"
With .Items
.BackgroundExt = "bottom[16,text=`<fgcolor A0A0A0><font ;8>Horizontal`,align=0x11]"
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupEqualWidth Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
.Caption = ""
With .Items
With .Add("R1")
.RadioGroup = 100
.Radio = True
.ShowCheckedAsSelected = EXTOOLBARLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight
.Checked = False
End With
With .Add("R2")
.RadioGroup = 100
.Radio = True
.ShowCheckedAsSelected = EXTOOLBARLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight
.Checked = True
End With
With .Add("R3")
.RadioGroup = 100
.Radio = True
.ShowCheckedAsSelected = EXTOOLBARLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight
.Checked = False
End With
End With
End With
End With
End With
var_Item1 = .Items.Add("New Group")
With var_Item1
.ToString = "[id=0][group=0x03][itemspad=4,4,4,18][itemsbg=0x02000000][itemsbghot=0x04000000]()"
.Caption = "<b><font ;14>B"
With .Items
.BackgroundExt = "bottom[16,text=`<fgcolor A0A0A0><font ;8>Vertical`,align=0x11]"
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupVertical Or EXTOOLBARLib.GroupPopupEnum.exGroupPopupEqualHeight Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
.Caption = ""
With .Items
With .Add("C1")
.Check = True
.Checked = True
End With
With .Add("C2")
.Check = True
.Checked = False
End With
With .Add("C3")
.Check = True
.Checked = True
End With
End With
End With
End With
End With
.Items.Add("",0,0).Padding = "4,0,0,0"
var_Item2 = .Items.Add("New Group")
With var_Item2
.ToString = "[id=0][group=0x03][itemspad=4,4,4,18][itemsbg=0x02000000][itemsbghot=0x04000000]()"
.Caption = ""
With .Items
.BackgroundExt = "bottom[16,text=`<fgcolor A0A0A0><font ;8>Mixt`,align=0x11]"
With .Add("",0)
.AllowEdit = EXTOOLBARLib.AllowEditEnum.exItemEditVertical Or EXTOOLBARLib.AllowEditEnum.exItemEditSlider
.ItemHeight = 76
.EditBorder = EXTOOLBARLib.EditBorderEnum.exEditBorderNone
.EditValue = 25
End With
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupVertical Or EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
.Caption = ""
With .Items
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
With .Add("Button1",2)
.ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsSelectButtonBottom Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize
With .Items
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
.Add("",0,0).Padding = "4,0,0,0"
With .Add("Button2",2)
.ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsSelectButtonBottom Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize
With .Items
.Add("Item 4")
.Add("Item 5")
.Add("Item 6")
End With
End With
End With
End With
With .Add("Popup",2)
.Alignment = EXTOOLBARLib.AlignmentEnum.exCenter
With .Items
.Add("Item 7").Check = True
.Add("Item 8")
With .Add("Item 9",2).Items
.Add("Item 10")
.Add("Item 11")
.Add("Item 12")
End With
End With
End With
End With
End With
End With
End With
End With
End With
var_Item4 = .Add("New Page")
With var_Item4
.ToString = "[id=0][typ=2][chk=0][spchk=-1][show=1][grp=10][bghot=0x12000000][bgsel=0x11000000][bgselhot=0x14000000][group=0x03][tab=9000][p" & _
"ad=4,0,4,0][popupoffset=-4,-1]([id=0][group=0x03]([id=0][group=0x03]))"
.ID = 300
.Caption = "Page2"
.ShowPopupAlign = EXTOOLBARLib.ShowPopupAlignEnum.exShowPopupAlignDown
With .Items.Item(0)
With .Items
With .Add("S1")
.ItemHeight = 88
.AllowEdit = EXTOOLBARLib.AllowEditEnum.exItemEditVertical Or EXTOOLBARLib.AllowEditEnum.exItemEditSpin Or EXTOOLBARLib.AllowEditEnum.exItemEditProgress
.EditValue = 25
End With
With .Add("S2")
.ItemHeight = 88
.AllowEdit = EXTOOLBARLib.AllowEditEnum.exItemEditVertical Or EXTOOLBARLib.AllowEditEnum.exItemEditSpin Or EXTOOLBARLib.AllowEditEnum.exItemEditProgress
.EditValue = 50
End With
With .Add("S3")
.ItemHeight = 88
.AllowEdit = EXTOOLBARLib.AllowEditEnum.exItemEditVertical Or EXTOOLBARLib.AllowEditEnum.exItemEditSpin Or EXTOOLBARLib.AllowEditEnum.exItemEditProgress
.EditValue = 75
End With
End With
End With
End With
.Add("",0,0).Padding = "8,0,0,0"
End With
End With
.PopupFlatAppearance = False
With .VisualAppearance
.Add(1,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSFlat-Ribbon/msfr_background.ebn")
.Add(2,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSFlat-Ribbon/msfr_groupt.ebn")
.Add(12,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSFlat-Ribbon/msfr_hot.ebn")
.Add(14,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSFlat-Ribbon/msfr_select.ebn")
.Add(17,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSFlat-Ribbon/msfr_tab.ebn")
.Add(18,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSFlat-Ribbon/msfr_tabhot.ebn")
.Add(32,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSFlat-Ribbon/msfr_check0.ebn")
.Add(33,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSFlat-Ribbon/msfr_check1.ebn")
.Add(34,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSFlat-Ribbon/msfr_buttonu.ebn")
.Add(35,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSFlat-Ribbon/msfr_buttond.ebn")
End With
.Appearance = &H1000000
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exToolTipAppearance,.Appearance)
.GetOcx().SelBackColor = &He000000
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exMenuHotBackColor,201326592)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exMenuSelHotBackColor,587202560)
.set_Background(&H2,570425344)
.set_Background(&H3,587202560)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exCheckBoxState0,536870912)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exCheckBoxState1,553648128)
.Refresh()
End With
|
187
|
Microsoft Paint - Ribbon Like

Dim var_Item,var_Item1,var_Item2,var_Item3,var_Item4
With AxToolBar1
With .Items
.ToString = "[id=0][group=0x03](),[id=-99][bg=0x01000000][group=0x03][itemspad=4,4,4,4]([id=9000])"
With .Item(0).Items
.Add("",0,0).Padding = "8,0,0,0"
var_Item3 = .Add("New Page")
With var_Item3
.ToString = "[id=0][typ=2][chk=1][spchk=-1][show=1][grp=10][bghot=0x12000000][bgsel=0x11000000][bgselhot=0x14000000][group=0x03][tab=9000][p" & _
"ad=4,0,4,0][popupoffset=-4,-1]([id=0][group=0x03]([id=0][group=0x03]))"
.ID = 200
.Caption = "Page1"
.ShowPopupAlign = EXTOOLBARLib.ShowPopupAlignEnum.exShowPopupAlignDown
With .Items.Item(0)
var_Item = .Items.Add("New Group")
With var_Item
.ToString = "[id=0][group=0x03][itemspad=4,4,4,18][itemsbg=0x02000000][itemsbghot=0x04000000]()"
.Caption = "<b><font ;14>A"
With .Items
.BackgroundExt = "bottom[16,text=`<fgcolor A0A0A0><font ;8>Horizontal`,align=0x11]"
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupEqualWidth Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
.Caption = ""
With .Items
With .Add("R1")
.RadioGroup = 100
.Radio = True
.ShowCheckedAsSelected = EXTOOLBARLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight
.Checked = False
End With
With .Add("R2")
.RadioGroup = 100
.Radio = True
.ShowCheckedAsSelected = EXTOOLBARLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight
.Checked = True
End With
With .Add("R3")
.RadioGroup = 100
.Radio = True
.ShowCheckedAsSelected = EXTOOLBARLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight
.Checked = False
End With
End With
End With
End With
End With
var_Item1 = .Items.Add("New Group")
With var_Item1
.ToString = "[id=0][group=0x03][itemspad=4,4,4,18][itemsbg=0x02000000][itemsbghot=0x04000000]()"
.Caption = "<b><font ;14>B"
With .Items
.BackgroundExt = "bottom[16,text=`<fgcolor A0A0A0><font ;8>Vertical`,align=0x11]"
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupVertical Or EXTOOLBARLib.GroupPopupEnum.exGroupPopupEqualHeight Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
.Caption = ""
With .Items
With .Add("C1")
.Check = True
.Checked = True
End With
With .Add("C2")
.Check = True
.Checked = False
End With
With .Add("C3")
.Check = True
.Checked = True
End With
End With
End With
End With
End With
.Items.Add("",0,0).Padding = "4,0,0,0"
var_Item2 = .Items.Add("New Group")
With var_Item2
.ToString = "[id=0][group=0x03][itemspad=4,4,4,18][itemsbg=0x02000000][itemsbghot=0x04000000]()"
.Caption = ""
With .Items
.BackgroundExt = "bottom[16,text=`<fgcolor A0A0A0><font ;8>Mixt`,align=0x11]"
With .Add("",0)
.AllowEdit = EXTOOLBARLib.AllowEditEnum.exItemEditVertical Or EXTOOLBARLib.AllowEditEnum.exItemEditSlider
.ItemHeight = 76
.EditBorder = EXTOOLBARLib.EditBorderEnum.exEditBorderNone
.EditValue = 25
End With
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupVertical Or EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
.Caption = ""
With .Items
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
With .Add("Button1",2)
.ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsSelectButtonBottom Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize
With .Items
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
.Add("",0,0).Padding = "4,0,0,0"
With .Add("Button2",2)
.ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsSelectButtonBottom Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize
With .Items
.Add("Item 4")
.Add("Item 5")
.Add("Item 6")
End With
End With
End With
End With
With .Add("Popup",2)
.Alignment = EXTOOLBARLib.AlignmentEnum.exCenter
With .Items
.Add("Item 7").Check = True
.Add("Item 8")
With .Add("Item 9",2).Items
.Add("Item 10")
.Add("Item 11")
.Add("Item 12")
End With
End With
End With
End With
End With
End With
End With
End With
End With
var_Item4 = .Add("New Page")
With var_Item4
.ToString = "[id=0][typ=2][chk=0][spchk=-1][show=1][grp=10][bghot=0x12000000][bgsel=0x11000000][bgselhot=0x14000000][group=0x03][tab=9000][p" & _
"ad=4,0,4,0][popupoffset=-4,-1]([id=0][group=0x03]([id=0][group=0x03]))"
.ID = 300
.Caption = "Page2"
.ShowPopupAlign = EXTOOLBARLib.ShowPopupAlignEnum.exShowPopupAlignDown
With .Items.Item(0)
With .Items
With .Add("S1")
.ItemHeight = 88
.AllowEdit = EXTOOLBARLib.AllowEditEnum.exItemEditVertical Or EXTOOLBARLib.AllowEditEnum.exItemEditSpin Or EXTOOLBARLib.AllowEditEnum.exItemEditProgress
.EditValue = 25
End With
With .Add("S2")
.ItemHeight = 88
.AllowEdit = EXTOOLBARLib.AllowEditEnum.exItemEditVertical Or EXTOOLBARLib.AllowEditEnum.exItemEditSpin Or EXTOOLBARLib.AllowEditEnum.exItemEditProgress
.EditValue = 50
End With
With .Add("S3")
.ItemHeight = 88
.AllowEdit = EXTOOLBARLib.AllowEditEnum.exItemEditVertical Or EXTOOLBARLib.AllowEditEnum.exItemEditSpin Or EXTOOLBARLib.AllowEditEnum.exItemEditProgress
.EditValue = 75
End With
End With
End With
End With
.Add("",0,0).Padding = "8,0,0,0"
End With
End With
.PopupFlatAppearance = False
With .VisualAppearance
.Add(1,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_background.ebn")
.Add(2,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_groupt.ebn")
.Add(3,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_groupo.ebn")
.Add(4,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_grouphot.ebn")
.Add(5,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_frameh.ebn")
.Add(6,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_framehs.ebn")
.Add(7,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_framehi.ebn")
.Add(8,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_framehe.ebn")
.Add(9,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_framevs.ebn")
.Add(10,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_framevi.ebn")
.Add(11,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_frameve.ebn")
.Add(12,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_select.ebn")
.Add(13,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_bordert.ebn")
.Add(14,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_buttond.ebn")
.Add(15,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_buttonu.ebn")
.Add(16,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_tab.ebn")
.Add(17,"CP:16 0 0 0 1")
.Add(18,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_tabhot.ebn")
.Add(19,"C:/Program Files/Exontrol/ExToolBar/Sample/EBN/MSPaint-Ribbon/mspr_tabselhot.ebn")
.Add(20,"CP:19 0 0 0 1")
End With
.LocalAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.ShadowBorder
.Appearance = &H1000000
.ForeColor = RGB(21,66,139)
.GetOcx().SelBackColor = &He000000
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exToolTipAppearance,.Appearance)
.set_Background(&H2,218103808)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameSingle,83886080)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameHStart,100663296)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameHIntermediate,117440512)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameHEnd,134217728)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameVStart,150994944)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameVIntermediate,167772160)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameVEnd,184549376)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exMenuHotBackColor,201326592)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exMenuSelHotBackColor,251658240)
.Refresh()
End With
|
186
|
Microsoft Office - Ribbon Like

Dim var_Item,var_Item1,var_Item2,var_Item3,var_Item4
With AxToolBar1
With .Items
.ToString = "[id=0][group=0x03](),[id=-99][bg=0x01000000][group=0x03][itemspad=4,4,4,4]([id=9000])"
With .Item(0).Items
.Add("",0,0).Padding = "8,0,0,0"
var_Item3 = .Add("New Page")
With var_Item3
.ToString = "[id=0][typ=2][chk=1][spchk=-1][show=1][grp=10][bghot=0x12000000][bgsel=0x11000000][bgselhot=0x14000000][group=0x03][tab=9000][p" & _
"ad=4,0,4,0][popupoffset=-4,-1]([id=0][group=0x03]([id=0][group=0x03]))"
.ID = 200
.Caption = "Page1"
.ShowPopupAlign = EXTOOLBARLib.ShowPopupAlignEnum.exShowPopupAlignDown
With .Items.Item(0)
var_Item = .Items.Add("New Group")
With var_Item
.ToString = "[id=0][group=0x03][itemspad=4,4,4,18][itemsbg=0x02000000][itemsbghot=0x04000000]()"
.Caption = "<b><font ;14>A"
With .Items
.BackgroundExt = "bottom[16,text=`<fgcolor A0A0A0><font ;8>Horizontal`,align=0x11]"
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupEqualWidth Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
.Caption = ""
With .Items
With .Add("R1")
.RadioGroup = 100
.Radio = True
.ShowCheckedAsSelected = EXTOOLBARLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight
.Checked = False
End With
With .Add("R2")
.RadioGroup = 100
.Radio = True
.ShowCheckedAsSelected = EXTOOLBARLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight
.Checked = True
End With
With .Add("R3")
.RadioGroup = 100
.Radio = True
.ShowCheckedAsSelected = EXTOOLBARLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight
.Checked = False
End With
End With
End With
End With
End With
var_Item1 = .Items.Add("New Group")
With var_Item1
.ToString = "[id=0][group=0x03][itemspad=4,4,4,18][itemsbg=0x02000000][itemsbghot=0x04000000]()"
.Caption = "<b><font ;14>B"
With .Items
.BackgroundExt = "bottom[16,text=`<fgcolor A0A0A0><font ;8>Vertical`,align=0x11]"
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupVertical Or EXTOOLBARLib.GroupPopupEnum.exGroupPopupEqualHeight Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
.Caption = ""
With .Items
With .Add("C1")
.Check = True
.Checked = True
End With
With .Add("C2")
.Check = True
.Checked = False
End With
With .Add("C3")
.Check = True
.Checked = True
End With
End With
End With
End With
End With
.Items.Add("",0,0).Padding = "4,0,0,0"
var_Item2 = .Items.Add("New Group")
With var_Item2
.ToString = "[id=0][group=0x03][itemspad=4,4,4,18][itemsbg=0x02000000][itemsbghot=0x04000000]()"
.Caption = ""
With .Items
.BackgroundExt = "bottom[16,text=`<fgcolor A0A0A0><font ;8>Mixt`,align=0x11]"
With .Add("",0)
.AllowEdit = EXTOOLBARLib.AllowEditEnum.exItemEditVertical Or EXTOOLBARLib.AllowEditEnum.exItemEditSlider
.ItemHeight = 76
.EditBorder = EXTOOLBARLib.EditBorderEnum.exEditBorderNone
.EditValue = 25
End With
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupVertical Or EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
.Caption = ""
With .Items
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
With .Add("Button1",2)
.ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsSelectButtonBottom Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize
With .Items
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
.Add("",0,0).Padding = "4,0,0,0"
With .Add("Button2",2)
.ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsSelectButtonBottom Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize
With .Items
.Add("Item 4")
.Add("Item 5")
.Add("Item 6")
End With
End With
End With
End With
With .Add("Popup",2)
.Alignment = EXTOOLBARLib.AlignmentEnum.exCenter
With .Items
.Add("Item 7").Check = True
.Add("Item 8")
With .Add("Item 9",2).Items
.Add("Item 10")
.Add("Item 11")
.Add("Item 12")
End With
End With
End With
End With
End With
End With
End With
End With
End With
var_Item4 = .Add("New Page")
With var_Item4
.ToString = "[id=0][typ=2][chk=0][spchk=-1][show=1][grp=10][bghot=0x12000000][bgsel=0x11000000][bgselhot=0x14000000][group=0x03][tab=9000][p" & _
"ad=4,0,4,0][popupoffset=-4,-1]([id=0][group=0x03]([id=0][group=0x03]))"
.ID = 300
.Caption = "Page2"
.ShowPopupAlign = EXTOOLBARLib.ShowPopupAlignEnum.exShowPopupAlignDown
With .Items.Item(0)
With .Items
With .Add("S1")
.ItemHeight = 88
.AllowEdit = EXTOOLBARLib.AllowEditEnum.exItemEditVertical Or EXTOOLBARLib.AllowEditEnum.exItemEditSpin Or EXTOOLBARLib.AllowEditEnum.exItemEditProgress
.EditValue = 25
End With
With .Add("S2")
.ItemHeight = 88
.AllowEdit = EXTOOLBARLib.AllowEditEnum.exItemEditVertical Or EXTOOLBARLib.AllowEditEnum.exItemEditSpin Or EXTOOLBARLib.AllowEditEnum.exItemEditProgress
.EditValue = 50
End With
With .Add("S3")
.ItemHeight = 88
.AllowEdit = EXTOOLBARLib.AllowEditEnum.exItemEditVertical Or EXTOOLBARLib.AllowEditEnum.exItemEditSpin Or EXTOOLBARLib.AllowEditEnum.exItemEditProgress
.EditValue = 75
End With
End With
End With
End With
.Add("",0,0).Padding = "8,0,0,0"
End With
End With
.PopupFlatAppearance = False
With .VisualAppearance
.Add(1,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_background.ebn")
.Add(2,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_groupt.ebn")
.Add(3,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_groupo.ebn")
.Add(4,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_grouphot.ebn")
.Add(5,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_frameh.ebn")
.Add(6,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_framehs.ebn")
.Add(7,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_framehi.ebn")
.Add(8,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_framehe.ebn")
.Add(9,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_framevs.ebn")
.Add(10,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_framevi.ebn")
.Add(11,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_frameve.ebn")
.Add(12,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_select.ebn")
.Add(13,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_bordert.ebn")
.Add(14,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_buttond.ebn")
.Add(15,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_buttonu.ebn")
.Add(16,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_tab.ebn")
.Add(17,"CP:16 0 0 0 1")
.Add(18,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_tabhot.ebn")
.Add(19,"C:\Program Files\Exontrol\ExToolBar\Sample\EBN\MSOffice-Ribbon\msor_tabselhot.ebn")
.Add(20,"CP:19 0 0 0 1")
End With
.ForeColor = RGB(21,66,139)
.GetOcx().SelBackColor = &He000000
.LocalAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.ShadowBorder
.Appearance = &H1000000
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exToolTipAppearance,.Appearance)
.set_Background(&H2,218103808)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameSingle,83886080)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameHStart,100663296)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameHIntermediate,117440512)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameHEnd,134217728)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameVStart,150994944)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameVIntermediate,167772160)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameVEnd,184549376)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exMenuHotBackColor,201326592)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exMenuSelHotBackColor,251658240)
.Refresh()
End With
|
185
|
How I can assign buttons to a tab

With AxToolBar1
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exMenuSelBorderColor,15790320)
With .Items
.ToString = "[id=0][group=0x0103][itemspad=4,4,4,4]([id=-10][group=0x03](),[id=-99][bg=RGB(240,240,240)][group=0x03][itemspad=4,4,4,4]([id=-" & _
"100]))"
With .Item(-10).Items
.Add("",0,0).Padding = "8,0,0,0"
With .Add("New Page")
.ToString = "[typ=2][chk=1][spchk=-1][show=1][grp=10][bghot=RGB(255,255,255)][bgsel=RGB(240,240,240)][bgselhot=RGB(240,240,240)][height=16][" & _
"group=0x03][tab=-100][pad=2,0,2,0][popupalign=0x01]([id=0][group=0x03]([]))"
.Caption = "Page<off -5><font ;5><b>1</b></font></off>"
.ID = -1000
With .Items.Item(0).Items
.Add("Button 1").ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButton
.Add("Button 2").ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButton
.Add("Button 3").ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButton
End With
End With
With .Add("New Page")
.ToString = "[typ=2][chk=0][spchk=-1][show=1][grp=10][bghot=RGB(255,255,255)][bgsel=RGB(240,240,240)][bgselhot=RGB(240,240,240)][height=16][" & _
"group=0x03][tab=-100][pad=2,0,2,0][popupalign=0x01]([id=0][group=0x03]([]))"
.Caption = "Page<off -5><font ;5><b>2</b></font></off>"
.ID = -1001
With .Items.Item(0).Items
.Add("Button 3").ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButton
.Add("Button 4").ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButton
End With
End With
.Add("",0,0).Padding = "8,0,0,0"
End With
End With
.Refresh()
End With
|
184
|
How can I hide an item

With AxToolBar1
With .Items
.Add("Item 1").Visible = False
.Add("Item 2")
End With
.Refresh()
End With
|
183
|
How do I quickly load items into the control

With AxToolBar1
.ToString = "Check 1[chk],Check 2[chk=1]"
End With
|
182
|
Are there any functions to get the size/width/height of the control so all items fit the control's client area

With AxToolBar1
With .Items
.Add("Item 1")
.Add("Item 2")
End With
.Refresh()
Debug.Print( .RequiredWidth )
Debug.Print( .RequiredHeight )
End With
|
181
|
How do I get the item giving its caption

With AxToolBar1
With .Items
.Add("Item 1").ID = 1000
.Add("Item 2").ID = 1001
End With
.get_Item("Item 1").Bold = True
.Refresh()
End With
|
180
|
How do I get the item giving its identifier

With AxToolBar1
With .Items
.Add("Item 1").ID = 1000
.Add("Item 2").ID = 1001
End With
.get_Item(1000).Bold = True
.Refresh()
End With
|
179
|
Can I change the cursor where it hovers the item

With AxToolBar1
.Cursor = "exCross"
With .Items
.Add("Item 1")
.Add("Item 2").Cursor = "exNoDrop"
End With
.Refresh()
End With
|
178
|
I am using radio-buttons, the question is it possible to uncheck the radio-buttons, so no button is pressed in the group

With AxToolBar1
.AllowToggleRadio = True
With .Items
With .Add("Radio 1",Nothing,1000)
.Radio = True
.RadioGroup = 100
End With
With .Add("Radio 2",Nothing,1001)
.Radio = True
.RadioGroup = 100
End With
With .Add("Radio 2",Nothing,1003)
.Radio = True
.RadioGroup = 100
End With
End With
.Refresh()
End With
|
177
|
Is it possible to display the item's identifiers

With AxToolBar1
.Debug = True
With .Items
.Add("Item 1").ID = 10001
.Add("Item 2").ID = 10002
End With
.Refresh()
End With
|
176
|
How do I disable showing the tooltip for all control (method 2)

With AxToolBar1
.AllowToolTip = False
With .Items
.Add("Item").Tooltip = "this is a bit of text to be shown when cursor hovers it"
.Add("Item").Tooltip = "this is a bit of text to be shown when cursor hovers it"
End With
.Refresh()
End With
|
175
|
How can I lock the control, so no events occur, but no shown in gray as Enabled do

' SelectItem event - Occurs when the user selects the item.
Private Sub AxToolBar1_SelectItem(ByVal sender As System.Object, ByVal e As AxEXTOOLBARLib._IToolBarEvents_SelectItemEvent) Handles AxToolBar1.SelectItem
With AxToolBar1
Debug.Print( "SelectItem should not be fired while locked" )
End With
End Sub
With AxToolBar1
.Locked = True
With .Items
.Add("Disabled").Enabled = False
.Add("Item 2")
.Add("Item 3")
End With
.Refresh()
End With
|
174
|
How can I disable the control

With AxToolBar1
.Enabled = False
With .Items
.Add("Disabled").Enabled = False
.Add("Item 2")
.Add("Item 3")
End With
.Refresh()
End With
|
173
|
How can I specify a different border/visual appearance for drop down portion of the popup menu (ebn)

With AxToolBar1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.PopupAppearance = &H1000000
With .Items
With .Add("Popup 1",2).Items
.Add("Item 1").Check = True
.Add("Item 2").Check = True
.Add("Item 3").Check = True
End With
With .Add("Popup 2",2).Items
.Add("Item 4").Check = True
.Add("Item 5").Check = True
.Add("Item 6").Check = True
End With
End With
.Refresh()
End With
|
172
|
How can I specify a different border for drop down portion of the popup menu

With AxToolBar1
.PopupAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.ShadowBorder
With .Items
With .Add("Popup 1",2).Items
.Add("Item 1").Check = True
.Add("Item 2").Check = True
.Add("Item 3").Check = True
End With
With .Add("Popup 2",2).Items
.Add("Item 4").Check = True
.Add("Item 5").Check = True
.Add("Item 6").Check = True
End With
End With
.Refresh()
End With
|
171
|
How can I specify a different border/visual appearance for drop down portion of the select buttons/combobox (ebn)

With AxToolBar1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.LocalAppearance = &H1000000
With .Items
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
With .Add("Button",2)
.ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsSelectButtonBottom Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize
With .Items
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
With .Add("Button",2)
.ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsSelectButtonBottom Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize
With .Items
.Add("Item 4")
.Add("Item 5")
.Add("Item 6")
End With
End With
End With
End With
End With
.Refresh()
End With
|
170
|
How can I specify a different border for drop down portion of the select buttons/combobox

With AxToolBar1
.LocalAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.ShadowBorder
With .Items
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
With .Add("Button",2)
.ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsSelectButtonBottom Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize
With .Items
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
With .Add("Button",2)
.ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsSelectButtonBottom Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize
With .Items
.Add("Item 4")
.Add("Item 5")
.Add("Item 6")
End With
End With
End With
End With
End With
.Refresh()
End With
|
169
|
How can I change the visual appearance for the entire control

With AxToolBar1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.Appearance = &H1000000
.ShowCheckedAsSelected = EXTOOLBARLib.ShowCheckedAsSelectedEnum.exDisplayItemCheckHighlight
With .Items
.Padding = "4,4,4,4"
With .Add("Radio 1")
.Radio = True
.Checked = True
End With
.Add("Radio 2").Radio = True
.Add("Radio 3").Radio = True
End With
.Refresh()
End With
|
168
|
How can I show a border arround the control
With AxToolBar1
.Appearance = EXTOOLBARLib.ToolBarAppearanceEnum.FlatBorder
.ShowCheckedAsSelected = EXTOOLBARLib.ShowCheckedAsSelectedEnum.exDisplayItemCheckHighlight
With .Items
.Padding = "4,4,4,4"
With .Add("Check 1")
.Checked = True
.Check = True
End With
With .Add("Check 2")
.Check = True
End With
End With
.Refresh()
End With
|
167
|
Is it possible to change the item's background color when check/uncheck the item

With AxToolBar1
.ShowCheckedAsSelected = EXTOOLBARLib.ShowCheckedAsSelectedEnum.exDisplayItemCheckHighlight
With .Items
.Padding = "4,4,4,4"
With .Add("Check 1")
.Checked = True
.Check = True
End With
With .Add("Check 2")
.Check = True
End With
End With
.Refresh()
End With
|
166
|
How can I change the colors for hot/hover items

With AxToolBar1
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exMenuHotBackColor,65536)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exMenuHotForeColor,16777215)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exMenuSelHotBackColor,8421504)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exMenuSelHotForeColor,16777215)
.SelBackColor = RGB(128,128,128)
.SelForeColor = RGB(255,255,255)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exMenuSelBorderColor,8421504)
.ShowCheckedAsSelected = EXTOOLBARLib.ShowCheckedAsSelectedEnum.exDisplayItemCheckHighlight
With .Items
.Padding = "4,4,4,4"
.Add("").ToString = "[group=3](Item 1,Item 2)"
With .Add("Check 1")
.Checked = True
.Check = True
End With
With .Add("Check 2")
.Check = True
End With
End With
.Refresh()
End With
|
165
|
How do I change the visual appearance of the groups (vertical)

With AxToolBar1
With .VisualAppearance
.Add(1,"c:\exontrol\images\normal.ebn")
.Add(2,"c:\exontrol\images\pushed.ebn")
.Add(3,"c:\exontrol\images\hot.ebn")
End With
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameSingle,16777216)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameVStart,16777216)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameVIntermediate,33554432)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameVEnd,50331648)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameSolid,255)
With .Items
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
With .Add("Vertical",2)
.Alignment = EXTOOLBARLib.AlignmentEnum.exCenter
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupVertical Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
.Add("Item 4")
.Add("Item 5")
End With
End With
.Add("").CaptionWidth = 12
With .Add("Vertical",2)
.Alignment = EXTOOLBARLib.AlignmentEnum.exCenter
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupVertical Or EXTOOLBARLib.GroupPopupEnum.exGroupPopupFrameThickBox Or EXTOOLBARLib.GroupPopupEnum.exGroupPopupFrameSolidBox Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
.Add("Item 4")
.Add("Item 5")
End With
End With
End With
End With
End With
.Refresh()
End With
|
164
|
How do I change the visual appearance of the groups (horizontal)

With AxToolBar1
With .VisualAppearance
.Add(1,"c:\exontrol\images\normal.ebn")
.Add(2,"c:\exontrol\images\pushed.ebn")
.Add(3,"c:\exontrol\images\hot.ebn")
End With
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameSingle,16777216)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameHStart,16777216)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameHIntermediate,33554432)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameHEnd,50331648)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exGroupPopupFrameSolid,255)
With .Items
With .Add("Horizontal Group",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
.Add("Item 4")
.Add("Item 5")
End With
End With
.Add("").ToString = "Horizontal Group[group=193](Item 1,Item 2,Item 3,Item 4,Item 5)"
End With
.Refresh()
End With
|
163
|
How can I change the visual appearance of the separator item

With AxToolBar1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exMenuSeparatorItem,16777216)
With .Items
.Add("Item").CaptionWidth = 128
.Add("",1)
.Add("Item").CaptionWidth = 128
.Add("").ToString = "<font ;5>separator[sep]"
End With
.Refresh()
End With
|
162
|
How can I change the visual appearance of the drop down of the control (normal.2)

With AxToolBar1
With .VisualAppearance
.Add(1,"c:\exontrol\images\normal.ebn")
.Add(2,"c:\exontrol\images\pushed.ebn")
End With
.PopupFlatImageWidth = 0
With .Items
With .Add("Popup",2).Items
.Add("Item 1").Check = True
.Add("Item 2").Check = True
.Add("Item 3").Check = True
.PopupAppearance = &H1000000
End With
End With
.Refresh()
End With
|
161
|
How can I change the visual appearance of the drop down of the control (normal.1)

With AxToolBar1
With .VisualAppearance
.Add(1,"c:\exontrol\images\normal.ebn")
.Add(2,"c:\exontrol\images\pushed.ebn")
End With
.PopupFlatAppearance = False
With .Items
With .Add("Popup",2).Items
.Add("Item 1").Check = True
.Add("Item 2").Check = True
.Add("Item 3").Check = True
.PopupAppearance = &H1000000
End With
End With
.Refresh()
End With
|
160
|
How can I change the visual appearance of the drop down of the control (flat)

With AxToolBar1
With .VisualAppearance
.Add(1,"c:\exontrol\images\normal.ebn")
.Add(2,"c:\exontrol\images\pushed.ebn")
End With
.GetOcx().PopupFlatBackColor = &H2000000
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exMenuFlatLineColor,.PopupFlatBackColor)
With .Items
With .Add("Popup",2).Items
.Add("Item 1").Check = True
.Add("Item 2").Check = True
.Add("Item 3").Check = True
.PopupAppearance = &H1000000
End With
End With
.Refresh()
End With
|
159
|
How can I change the visual appearance of the flat portion of the drop down of the control

With AxToolBar1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.GetOcx().PopupFlatBackColor = &H1000000
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exMenuFlatLineColor,.PopupFlatBackColor)
With .Items
With .Add("Popup",2).Items
.Add("Item 1").Check = True
.Add("Item 2").Check = True
.Add("Item 3").Check = True
.PopupAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.ShadowBorder
End With
End With
.Refresh()
End With
|
158
|
How can I change the visual appearance of the radio-buttons to be displayed in the toolbar control (ebn)

With AxToolBar1
With .VisualAppearance
.Add(1,"c:\exontrol\images\normal.ebn")
.Add(2,"c:\exontrol\images\pushed.ebn")
End With
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exRadioButtonState0,16777216)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exRadioButtonState1,33554432)
With .Items
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
With .Add("Radio 1",Nothing,1000)
.Radio = True
.RadioGroup = 100
End With
With .Add("Radio 2",Nothing,1001)
.Radio = True
.RadioGroup = 100
End With
With .Add("Radio 2",Nothing,1003)
.Radio = True
.RadioGroup = 100
End With
.Item(1000).Checked = True
End With
End With
End With
.Refresh()
End With
|
157
|
How can I change the visual appearance of the check-boxes to be displayed in the toolbar control (ebn)

With AxToolBar1
With .VisualAppearance
.Add(1,"c:\exontrol\images\normal.ebn")
.Add(2,"c:\exontrol\images\pushed.ebn")
End With
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exCheckBoxState0,16777216)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exCheckBoxState1,33554432)
With .Items
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
With .Add("Check 1")
.Check = True
.Checked = True
End With
.Add("Check 2").Check = True
End With
End With
End With
.Refresh()
End With
|
156
|
How can I change the visual appearance of the tooltips to be displayed in the toolbar control (ebn)

With AxToolBar1
With .VisualAppearance
.Add(1,"c:\exontrol\images\normal.ebn")
.Add(2,"c:\exontrol\images\pushed.ebn")
End With
.ToolTipDelay = 1
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exToolTipAppearance,16777216)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exToolTipForeColor,255)
With .Items
.Add("Item").Tooltip = "this is a bit of text to be shown when cursor hovers it"
.Add("Item").Tooltip = "this is a bit of text to be shown when cursor hovers it"
End With
.Refresh()
End With
|
155
|
Is it possible to change the visual appearance of the buttons to be displayed in the toolbar control (ebn)

With AxToolBar1
With .VisualAppearance
.Add(1,"c:\exontrol\images\normal.ebn")
.Add(2,"c:\exontrol\images\pushed.ebn")
End With
.set_Background(&H2,16777216)
.set_Background(&H3,33554432)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exMenuSeparatorSelectButton,255)
.set_Background(EXTOOLBARLib.BackgroundPartEnum.exMenuSeparatorSelectButtonBottom,16711680)
With .Items
.Padding = "4,4,4,4"
.Add("Button").ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButton
With .Add("")
.Enabled = False
.ItemHeight = 4
End With
With .Add("Button",2)
.ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsSelectButtonBottom Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize
With .Items
.PopupAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.ShadowBorder
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
With .Add("")
.Enabled = False
.ItemHeight = 4
End With
With .Add("Button",2)
.ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsSelectButton Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize
With .Items
.PopupAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.ShadowBorder
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
End With
.Refresh()
End With
|
154
|
I've seen that the width of the tooltip is variable. Can I make it larger

With AxToolBar1
.ToolTipWidth = 328
With .Items
.Add("Item").Tooltip = "this is a bit of text to be shown when cursor hovers it"
.Add("Item").Tooltip = "this is a bit of text to be shown when cursor hovers it"
End With
.Refresh()
End With
|
153
|
How do I disable showing the tooltip for all control (method 1)

With AxToolBar1
.ToolTipDelay = 0
With .Items
.Add("Item").Tooltip = "this is a bit of text to be shown when cursor hovers it"
.Add("Item").Tooltip = "this is a bit of text to be shown when cursor hovers it"
End With
.Refresh()
End With
|
152
|
How do I let the tooltip being displayed longer

With AxToolBar1
.ToolTipPopDelay = 10000
With .Items
.Add("Item").Tooltip = "this is a bit of text to be shown when cursor hovers it"
.Add("Item").Tooltip = "this is a bit of text to be shown when cursor hovers it"
End With
.Refresh()
End With
|
151
|
How do I show the tooltip quicker

With AxToolBar1
.ToolTipDelay = 1
With .Items
.Add("Item").Tooltip = "this is a bit of text to be shown when cursor hovers it"
.Add("Item").Tooltip = "this is a bit of text to be shown when cursor hovers it"
End With
.Refresh()
End With
|
150
|
How can I get the version of the control I am running

With AxToolBar1
Debug.Print( .Version )
End With
|
149
|
How can I align the picture on the control's background

With AxToolBar1
.Picture = AxToolBar1.ExecuteTemplate("loadpicture(`c:\exontrol\images\card.png`)")
.PictureDisplay = EXTOOLBARLib.PictureDisplayEnum.UpperRight
With .Items
.Add("Item")
.Add("Item")
End With
.Refresh()
End With
|
148
|
Is it possible to place a picture on the control's background

With AxToolBar1
.Picture = AxToolBar1.ExecuteTemplate("loadpicture(`c:\exontrol\images\card.png`)")
With .Items
.Add("Item")
.Add("Item")
End With
.Refresh()
End With
|
147
|
How can I display the item using a different font/size

With AxToolBar1
With .Items
.Add("").Caption = "<font ;14>This is a bit of text"
.Add("<font ;6>This is a bit of text")
.Add("").Caption = "<font Times New Roman;22>This is a bit of text</font>. Default"
End With
.Refresh()
End With
|
146
|
How can I use the Event event, available for /COM version

' Event event - Notifies the application once the control fires an event.
Private Sub AxToolBar1_Event(ByVal sender As System.Object, ByVal e As AxEXTOOLBARLib._IToolBarEvents_EventEvent) Handles AxToolBar1.Event
With AxToolBar1
Debug.Print( "Event" )
Debug.Print( .get_EventParam(-2) )
End With
End Sub
With AxToolBar1
With .Items
.Add("Check").Check = True
With .Add("Slider")
.AllowEdit = EXTOOLBARLib.AllowEditEnum.exItemEditSlider
.EditWidth = 128
.EditBorder = EXTOOLBARLib.EditBorderEnum.exEditBorderNone
.EditValue = 25
End With
End With
.Refresh()
End With
|
145
|
Is it possible to get notified once the user edits the field, or change the slider value

' EditChange event - Occurs when the user alters the item's text box field.
Private Sub AxToolBar1_EditChange(ByVal sender As System.Object, ByVal e As AxEXTOOLBARLib._IToolBarEvents_EditChangeEvent) Handles AxToolBar1.EditChange
With AxToolBar1
Debug.Print( "EditChange event on Itm object" )
End With
End Sub
With AxToolBar1
With .Items
With .Add("Item")
.AllowEdit = EXTOOLBARLib.AllowEditEnum.exItemEditSlider
.EditWidth = 128
.EditBorder = EXTOOLBARLib.EditBorderEnum.exEditBorderNone
.EditValue = 25
End With
End With
.Refresh()
End With
|
144
|
How do I get notified once I uncheck an item

' UncheckItem event - Occurs when the user unchecks the item.
Private Sub AxToolBar1_UncheckItem(ByVal sender As System.Object, ByVal e As AxEXTOOLBARLib._IToolBarEvents_UncheckItemEvent) Handles AxToolBar1.UncheckItem
With AxToolBar1
Debug.Print( "UncheckItem event on Itm object" )
End With
End Sub
With AxToolBar1
With .Items
.Add("Item").Check = True
.Add("Item").Check = True
End With
.Refresh()
End With
|
143
|
How do I get notified once I check an item

' CheckItem event - Occurs when the user checks the item.
Private Sub AxToolBar1_CheckItem(ByVal sender As System.Object, ByVal e As AxEXTOOLBARLib._IToolBarEvents_CheckItemEvent) Handles AxToolBar1.CheckItem
With AxToolBar1
Debug.Print( "CheckItem event on Itm object" )
End With
End Sub
With AxToolBar1
With .Items
.Add("Item").Check = True
.Add("Item").Check = True
End With
.Refresh()
End With
|
142
|
How do I get notified once I click/select an item

' SelectItem event - Occurs when the user selects the item.
Private Sub AxToolBar1_SelectItem(ByVal sender As System.Object, ByVal e As AxEXTOOLBARLib._IToolBarEvents_SelectItemEvent) Handles AxToolBar1.SelectItem
With AxToolBar1
Debug.Print( "SelectItem event on Itm object" )
End With
End Sub
With AxToolBar1
With .Items
.Add("Item")
.Add("Item")
End With
.Refresh()
End With
|
141
|
Does your control support padding for items

With AxToolBar1
.PopupFlatAppearance = False
With .Items
.Padding = "2,12,2,2"
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
.BackColor = RGB(255,255,255)
.BackgroundExt = "root[pattern=0x000,frame=RGB(128,128,128)](top[2],top[10,text=`<font ;6><fgcolor 808080> group </font></fgcolor>`,align=0x11])"
End With
.Refresh()
End With
|
140
|
How can I display the drop down popup to a different position ( method 2 )

With AxToolBar1
With .Items
With .Add("Popup",2,100)
.ShowPopupAlign = EXTOOLBARLib.ShowPopupAlignEnum.exShowPopupAlignDown
.ShowPopupArrow = False
.ShowPopupOffset = "-12,-48"
With .Items
.PopupAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.RaisedBorder
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
End With
.Refresh()
End With
|
139
|
How can I display the drop down popup to a different position ( method 1 )

With AxToolBar1
With .Items
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
With .Add("Popup 1",2,100)
.ShowPopupAlign = EXTOOLBARLib.ShowPopupAlignEnum.exShowPopupAlignDown
.ShowPopupArrow = False
With .Items
.PopupAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.RaisedBorder
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
With .Add("Popup 2",2,200)
.ShowPopupAt = 100
.ShowPopupArrow = False
With .Items
.PopupAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.RaisedBorder
.Add("Item 4")
.Add("Item 5")
.Add("Item 6")
End With
End With
End With
End With
End With
.Refresh()
End With
|
138
|
Is it possible to show the popup bellow to the item, rather than on the right side

With AxToolBar1
With .Items
With .Add("Popup",2)
.ShowPopupAlign = EXTOOLBARLib.ShowPopupAlignEnum.exShowPopupAlignDown
.ShowPopupArrow = False
With .Items
.PopupAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.FlatBorder
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
.Add("").ToString = "Popup[arrow=0][popupalign=1][popupapp=1](Item 1,Item 2,Item 3)"
End With
.Refresh()
End With
|
137
|
How can I change the visual appearance for items, when cursor hovers it (hot,EBN)

With AxToolBar1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
With .Items
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
.HotBackColor = &H1000000
.Padding = "4,8,4,8"
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
.Add("").ToString = "[group=0x03][itemspad=4,8,4,8][itemsbghot=0x1000000](Item 1,Item 2,Item 3)"
End With
.Refresh()
End With
|
136
|
How can I change the background color for items, when cursor hovers it (hot)

With AxToolBar1
With .Items
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
.HotBackColor = RGB(255,0,0)
.Padding = "0,8,0,8"
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
.Add("").ToString = "[group=0x03][itemspad=0,8,0,8][itemsbghot=RGB(255,0,0)](Item 1,Item 2,Item 3)"
End With
.Refresh()
End With
|
135
|
How can I change the visual appearance for items (EBN)

With AxToolBar1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
With .Items
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
.BackColor = &H1000000
.Padding = "4,8,4,8"
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
.Add("").ToString = "[group=0x03][itemspad=4,8,4,8][itemsbg=0x1000000](Item 1,Item 2,Item 3)"
End With
.Refresh()
End With
|
134
|
How can I change the background color for items

With AxToolBar1
With .Items
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
.BackColor = RGB(255,0,0)
.Padding = "0,8,0,8"
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
.Add("").ToString = "[group=0x03][itemspad=0,8,0,8][itemsbg=RGB(255,0,0)](Item 1,Item 2,Item 3)"
End With
.Refresh()
End With
|
133
|
Is it possible to hide the popup's arrow

With AxToolBar1
With .Items
With .Add("Popup",2)
.ShowPopupArrow = False
With .Items
.PopupAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.ShadowBorder
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
.Add("").ToString = "Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)"
End With
.Refresh()
End With
|
132
|
How do I hide the left gray portion to be shown on the drop down menu/popup (method 2)

With AxToolBar1
.PopupFlatImageWidth = 0
With .Items
With .Add("Popup",2).Items
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
.PopupAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.ShadowBorder
End With
End With
.Refresh()
End With
|
131
|
How do I hide the left gray portion to be shown on the drop down menu/popup (method 1)

With AxToolBar1
.PopupFlatAppearance = False
With .Items
With .Add("Popup",2).Items
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
.PopupAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.ShadowBorder
End With
End With
.Refresh()
End With
|
130
|
How can I arrange the drop down item from left to right, rather than top to bottom

' SelectItem event - Occurs when the user selects the item.
Private Sub AxToolBar1_SelectItem(ByVal sender As System.Object, ByVal e As AxEXTOOLBARLib._IToolBarEvents_SelectItemEvent) Handles AxToolBar1.SelectItem
With AxToolBar1
Debug.Print( "Clicked" )
End With
End Sub
With AxToolBar1
.PopupFlatAppearance = False
With .Items
With .Add("Button",2)
.ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsSelectButtonBottom Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize
With .Items
.PopupAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.ShadowBorder
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
End With
End With
.Add("").ToString = "Button[button=0x0113][popupapp=6]([group=0x03](Item 1,Item 2,Item 3))"
End With
.Refresh()
End With
|
129
|
How can I add a drop down button / combobox (method 2)

' SelectItem event - Occurs when the user selects the item.
Private Sub AxToolBar1_SelectItem(ByVal sender As System.Object, ByVal e As AxEXTOOLBARLib._IToolBarEvents_SelectItemEvent) Handles AxToolBar1.SelectItem
With AxToolBar1
Debug.Print( "Clicked" )
End With
End Sub
With AxToolBar1
With .Items
With .Add("Button",2)
.ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsSelectButtonBottom Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize
With .Items
.PopupAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.ShadowBorder
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
.Add("").ToString = "Button[button=275][popupapp=6](Item 1[id=20],Item 2[id=30],Item 3[id=40])"
End With
.Refresh()
End With
|
128
|
How can I add a drop down button / combobox (method 1)

' SelectItem event - Occurs when the user selects the item.
Private Sub AxToolBar1_SelectItem(ByVal sender As System.Object, ByVal e As AxEXTOOLBARLib._IToolBarEvents_SelectItemEvent) Handles AxToolBar1.SelectItem
With AxToolBar1
Debug.Print( "Clicked" )
End With
End Sub
With AxToolBar1
With .Items
With .Add("Button",2)
.ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsSelectButton Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize
With .Items
.PopupAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.ShadowBorder
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
.Add("").ToString = "Button[button=0x13][popupapp=6](Item 1[id=20],Item 2[id=30],Item 3[id=40])"
End With
.Refresh()
End With
|
127
|
I am using exShowAsSelectButton/exShowAsSelectButtonBottom but none of them works. What could be wrong

' SelectItem event - Occurs when the user selects the item.
Private Sub AxToolBar1_SelectItem(ByVal sender As System.Object, ByVal e As AxEXTOOLBARLib._IToolBarEvents_SelectItemEvent) Handles AxToolBar1.SelectItem
With AxToolBar1
Debug.Print( "Clicked" )
End With
End Sub
With AxToolBar1
With .Items
With .Add("Button",2)
.ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsSelectButton Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize
With .Items
.PopupAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.ShadowBorder
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
End With
.Refresh()
End With
|
126
|
How can I add a button (push button)

' SelectItem event - Occurs when the user selects the item.
Private Sub AxToolBar1_SelectItem(ByVal sender As System.Object, ByVal e As AxEXTOOLBARLib._IToolBarEvents_SelectItemEvent) Handles AxToolBar1.SelectItem
With AxToolBar1
Debug.Print( "Clicked" )
End With
End Sub
With AxToolBar1
With .Items
.Add("Button").ShowAsButton = EXTOOLBARLib.ShowAsButtonEnum.exShowAsButtonAutoSize Or EXTOOLBARLib.ShowAsButtonEnum.exShowAsButton
.Add("").ToString = "Button[button=0x03]"
End With
.Refresh()
End With
|
125
|
How can I display grouping items with no frame arround

With AxToolBar1
With .Items
With .Add("Horizontal Group",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupFrameThickBox Or EXTOOLBARLib.GroupPopupEnum.exGroupPopupFrameSolidBox Or EXTOOLBARLib.GroupPopupEnum.exGroupPopupEqualHeight Or EXTOOLBARLib.GroupPopupEnum.exGroupPopupEqualWidth Or EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
.Add("A").Alignment = EXTOOLBARLib.AlignmentEnum.exCenter
.Add("BC").Alignment = EXTOOLBARLib.AlignmentEnum.exCenter
.Add("D").Alignment = EXTOOLBARLib.AlignmentEnum.exCenter
End With
End With
.Add("").ToString = "Horizontal Group[group=243](A[id=20][align=1],BC[id=30][align=1],D[id=40][align=1])"
End With
.Refresh()
End With
|
124
|
How can I display grouping items of the same size/width/height

With AxToolBar1
With .Items
With .Add("Horizontal Group",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupFrameThickBox Or EXTOOLBARLib.GroupPopupEnum.exGroupPopupFrameSolidBox Or EXTOOLBARLib.GroupPopupEnum.exGroupPopupEqualHeight Or EXTOOLBARLib.GroupPopupEnum.exGroupPopupEqualWidth Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
.Add("A").Alignment = EXTOOLBARLib.AlignmentEnum.exCenter
.Add("BC").Alignment = EXTOOLBARLib.AlignmentEnum.exCenter
.Add("D").Alignment = EXTOOLBARLib.AlignmentEnum.exCenter
End With
End With
.Add("").ToString = "Horizontal Group[group=0xF1](A[id=20][align=1],BC[id=30][align=1],D[id=40][align=1])"
End With
.Refresh()
End With
|
123
|
Is it possible to display a ticker frame arround grouping items

With AxToolBar1
With .Items
With .Add("Horizontal Group",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupFrameThickBox Or EXTOOLBARLib.GroupPopupEnum.exGroupPopupFrameSolidBox Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
.Add("").ToString = "Horizontal Group[group=193](Item 1[id=20],Item 2[id=30],Item 3[id=40])"
End With
.Refresh()
End With
|
122
|
How do I display items horizontally arranged

With AxToolBar1
With .Items
With .Add("Horizontal Group",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
End With
End With
.Add("").ToString = "Horizontal Group[group=0x01](Item 1[id=20],Item 2[id=30],Item 3[id=40])"
End With
.Refresh()
End With
|
121
|
Is it possible to expand an item when it is clicked (tree,group,vertical)

With AxToolBar1
With .Items
With .Add("Expand",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupVertical Or EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
.Check = True
.ShowPopupOnChecked = True
With .Items
.Padding = "22,0,0,0"
.Add("Radio 1").Radio = True
.Add("Radio 2").Radio = True
With .Add("Radio 3")
.Radio = True
.Checked = True
End With
End With
.Checked = True
End With
.Add("").ToString = "Expand[typ=1][chk=1][spchk=-1][group=0x0103][itemspad=22,0,0,0](Radio 1[id=20][typ=2],Radio 2[id=30][typ=2],Radio 3[id=40][typ=" & _
"2][chk=1])"
End With
.Refresh()
End With
|
120
|
Is it possible to expand an item when it is clicked (tree,group,vertical)

With AxToolBar1
With .Items
With .Add("Expand",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupVertical Or EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
.Check = True
.ShowPopupOnChecked = True
With .Items
.Padding = "22,0,0,0"
.Add("Radio 1").Radio = True
.Add("Radio 2").Radio = True
With .Add("Radio 3")
.Radio = True
.Checked = True
End With
End With
.Checked = True
End With
End With
.Refresh()
End With
|
119
|
Is it possible to expand an item when it is clicked (group)

With AxToolBar1
With .Items
With .Add("Expand",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopup
.ItemHeight = 24
.Check = True
.ShowPopupOnChecked = True
With .Items
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
.PopupAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.ShadowBorder
End With
End With
End With
.Refresh()
End With
|
118
|
Is it possible to extend an item when it is clicked

With AxToolBar1
With .Items
With .Add("Expand",2)
.Check = True
.ShowPopupOnChecked = True
With .Items
.Add("Item 1")
.Add("Item 2")
.Add("Item 3")
.PopupAppearance = EXTOOLBARLib.ToolBarAppearanceEnum.ShadowBorder
End With
End With
End With
.Refresh()
End With
|
117
|
Does your control implement padding for item

With AxToolBar1
With .Items
.BackColor = RGB(250,250,250)
.Add("Item").Padding = "4,4,4,4"
.Add("").ToString = "Item[pad=4,4,4,4]"
End With
.Refresh()
End With
|
116
|
How can I add an empty item for a horizontal group

With AxToolBar1
With .Items
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
.Add("Item 1")
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupCenter Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
.ItemHeight = 12
With .Items.Add("")
.Enabled = False
.ItemHeight = 8
.CaptionWidth = 8
End With
End With
.Add("Item 2")
End With
End With
End With
.Refresh()
End With
|
115
|
How can I add an empty/separator item

With AxToolBar1
With .Items
.Add("Item")
With .Add("")
.Enabled = False
.ItemHeight = 2
.CaptionWidth = 8
.BackColor = RGB(240,240,240)
End With
.Add("Item")
End With
.Refresh()
End With
|
114
|
How can I add an empty/frame item

With AxToolBar1
With .Items
.Add("Item 1")
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exGroupPopupCenter Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
.ItemHeight = 12
With .Items.Add("")
.Enabled = False
.ItemHeight = 8
.CaptionWidth = 8
End With
End With
.Add("Item 2")
End With
.Refresh()
End With
|
113
|
How can I specify the height of the item

With AxToolBar1
With .Items
.BackColor = RGB(250,250,250)
.Add("Item").ItemHeight = 64
.Add("").ToString = "Item[height=64]"
End With
.Refresh()
End With
|
112
|
How can I specify the width of the item

With AxToolBar1
With .Items
.BackColor = RGB(250,250,250)
.Add("Item").CaptionWidth = 128
.Add("").ToString = "Item[captionwidth=128]"
End With
.Refresh()
End With
|
111
|
How do I align the item

With AxToolBar1
With .Items
.BackColor = RGB(250,250,250)
.Add("Item")
With .Add("Item")
.Alignment = EXTOOLBARLib.AlignmentEnum.exCenter
.CaptionWidth = 128
End With
With .Add("Item")
.Alignment = EXTOOLBARLib.AlignmentEnum.exRight
.CaptionWidth = 128
End With
.Add("").ToString = "Item[align=1]"
End With
.Refresh()
End With
|
110
|
How can I underline the item

With AxToolBar1
With .Items
.Add("Item").Underline = True
.Add("<u>Item</u>")
.Add("").ToString = "Item[und]"
End With
.Refresh()
End With
|
109
|
How can I show the item as strikeout

With AxToolBar1
With .Items
.Add("Item").Strikeout = True
.Add("<s>Item</s>")
.Add("").ToString = "Item[stk]"
End With
.Refresh()
End With
|
108
|
How can I show the item in italics

With AxToolBar1
With .Items
.Add("Item").Italic = True
.Add("<i>Item</i>")
.Add("").ToString = "Item[itl]"
End With
.Refresh()
End With
|
107
|
How can I show the item in bold

With AxToolBar1
With .Items
.Add("Item").Bold = True
.Add("<b>Item</b>")
.Add("").ToString = "Item[bld]"
End With
.Refresh()
End With
|
106
|
How can I show the item as disabled but still be able to select or use it

With AxToolBar1
With .Items
.Add("Item").ShowAsDisabled = True
.Add("").ToString = "Item[showdis=1]"
End With
.Refresh()
End With
|
105
|
How can I enable or disable an item

With AxToolBar1
With .Items
.Add("Item").Enabled = False
.Add("").ToString = "Item[dis]"
End With
.Refresh()
End With
|
104
|
How can I add a separator item

With AxToolBar1
With .Items
.Add("Item").CaptionWidth = 128
.Add("<font ;6>separator",1)
.Add("Item").CaptionWidth = 128
.Add("").ToString = "<font ;6>separator[sep]"
End With
.Refresh()
End With
|
103
|
How can I change the item's foreground color

With AxToolBar1
With .Items
.Add("Item").ForeColor = RGB(255,0,0)
.Add("<fgcolor FF0000>Item")
.Add("").ToString = "Item[fg=RGB(255,0,0)]"
End With
.Refresh()
End With
|
102
|
How can I change the item's background/backcolor, when the item is selected/checked (radio-buttons)

With AxToolBar1
With .Items
With .Add("",2)
.GroupPopup = EXTOOLBARLib.GroupPopupEnum.exNoGroupPopupFrame Or EXTOOLBARLib.GroupPopupEnum.exGroupPopup
With .Items
With .Add("Radio 1")
.HotBackColor = RGB(255,255,255)
.SelBackColor = RGB(255,0,0)
.SelHotBackColor = RGB(255,0,0)
.ShowCheckedAsSelected = EXTOOLBARLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight
.Radio = True
.RadioGroup = 100
.Checked = True
End With
With .Add("Radio 2")
.HotBackColor = RGB(255,255,255)
.SelBackColor = RGB(255,0,0)
.SelHotBackColor = RGB(255,0,0)
.ShowCheckedAsSelected = EXTOOLBARLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight
.Radio = True
.RadioGroup = 100
End With
.Add("").ToString = "Radio 3[typ=2][show=1][grp=100][bghot=RGB(255,255,255)][bgsel=RGB(255,0,0)][bgselhot=RGB(255,0,0)]"
End With
End With
End With
.Refresh()
End With
|
101
|
How can I change the item's background/backcolor, when the item is selected/checked (check-box)

With AxToolBar1
With .Items
With .Add("Check 1")
.HotBackColor = RGB(255,255,255)
.SelBackColor = RGB(255,0,0)
.SelHotBackColor = RGB(255,0,0)
.ShowCheckedAsSelected = EXTOOLBARLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight
.Checked = True
.Check = True
End With
.Add("").ToString = "Check 2[typ=1][chk=0][show=1][bghot=RGB(255,255,255)][bgsel=RGB(255,0,0)][bgselhot=RGB(255,0,0)]"
End With
.Refresh()
End With
|